/* CSS Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

/* Full site defaults */
html {
  font-family: 'Courier New', Courier, monospace;
  background-color: #F4F5F5;
  color: #2B2430;
}

/* Setting up the main body container (whole site sits in here) */
body {
  min-height: 100vh;
  width: 100%;
  display: grid;
  grid-template-rows: min-content auto min-content; 
}

/* The header box */
header{
  background-color:#9EA5A3;
  font-family: fantasy;
  color: #2B2430;
  /* height: 100%; */
  padding: 2em;
}

h1 {
  font-size: 200%;
}

/* The container which holds the sidebar and main content */
.main-container {
  display: flex;
  flex-direction: row;
}

/* The side navigation menu */
.sidebar {
  width: 200px;
  background-color: #827E72;
  height: 100%;
  display: none;
}

/* Sidebar links */
.sidebar a {
  display: block;
  color: #F4F5F5;
  font-size: 1.2rem;
  padding: 1em;
  /* padding-right: 3em; */
  text-decoration: none;
  font-family:'Courier New', Courier, monospace;
  width: 100%;
}

/* Active/current link */
.sidebar a.active {
  background-color: #7C7064;
  width: 100%;
}

/* Links on mouse-over */
.sidebar a:hover:not(.active) {
  background-color: #7C7064;
  width: 100%;
}

/* Style page content */
main {
  padding: 2%;
  width: 100%;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.bodyheader {
  padding: 1em;
}

h3 {
  font-size: 2rem;
  font-weight: bolder;
  padding-bottom: 0.5em;
}

iframe {
  width: 100%;
  height: 90vh;
}

footer {
  background-color: #9EA5A3;
  padding: 1em;
}

.collapse {
  background-color: #827E72;
  color: #F4F5F5;
  margin: 5px;
  width: 90%;
  padding: 1em;
  font-size: 1.2rem;
  border: 0;
}

.collapse:hover {
  background-color: #7C7064;
}

.open_sb {
  width: 40px;
  height: 40px;
  background-color: #827E72;
  color: #F4F5F5;
  border: 0;
  border-radius: 15%;
}

.open_sb:hover {
  background-color: #7C7064;
}
